home *** CD-ROM | disk | FTP | other *** search
/ ftp2.jacobs.com / 2015.02.ftp2.jacobs.com.tar / ftp2.jacobs.com / pub / iPass / Open Mobile-V2.3.0-11624-V9.000.msi / Data1.cab / _81DB19227B4AE917432B3BADCA85FE8E < prev    next >
Text File  |  2012-10-24  |  760b  |  40 lines

  1. ; iPass Dial-Up Networking Script
  2. ;
  3. ; Copyright (C) 1997-2000 iPass Inc.
  4. ;
  5. ; Do not edit this script.  Connection to the
  6. ; remote access points requires this script.
  7. ;
  8. ; Future auto-updates of this script will not
  9. ; occur when editions are made to this script.
  10. ;
  11. ; REV: SZ/2-03-97
  12. ;
  13. proc main
  14.     integer nTries = 3
  15.     delay 2
  16.     while nTries > 0 do
  17.         transmit "...^M"
  18.         waitfor "SITA NETWORK" then DoLogin until 5
  19.         nTries = nTries -1
  20.     endwhile
  21.     ; timed out
  22.     goto Abort
  23. DoLogin:
  24.     delay 2
  25.     transmit "NUI 37830001^M"
  26.     waitfor "password"
  27.     delay 2
  28.     transmit "98Z8VJ^M"
  29.     waitfor "active"
  30.     delay 1
  31.     transmit "9001252001^M"
  32.     waitfor "connected"
  33.     goto Done
  34. Abort:
  35.     ; allow manual completion
  36.     set screen keyboard on
  37.     halt
  38. Done:
  39. endproc
  40.